home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr47
/
asmlib35.zip
/
ASM3DEMO.ZIP
/
GDATA.ASM
< prev
next >
Wrap
Assembly Source File
|
1992-06-04
|
359b
|
19 lines
; GDATA.ASM - common graph data for ASMDEMO
include asm.inc
public teenager, subtitle, xaxis, cost
public x0, y0, x1, y1
.data
teenager db 'Cost to Feed a Teenager (projected)',0
subtitle db 'before lunch',0
xaxis db 'time of day',0
cost db 'Dollars per Hour',0
x0 dw 0 ; xmin
y0 dw 0 ; ymin
x1 dw 0 ; xmax
y1 dw 0 ; ymax
end